c# open a new form and close current

69

c# open a new form and close current -

{
    this.Hide();
    Form1 f1 = new Form1();
    f1.ShowDialog();
    this.Close();
}

Comments

Submit
0 Comments